home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
47215
/
47215.xpi
/
chrome
/
content
/
lib
/
dom.js
< prev
next >
Wrap
Text File
|
2009-11-22
|
450b
|
22 lines
(function()
{
//shortcut for document.getElementById
this.getBrowserElement = function (anID)
{
return document.getElementById(anID);
}
//return an element of this extension
this.getElement = function (anID)
{
return this.getBrowserElement('URLtoTabTitle-'+anID);
}
//removes an element from the dom
this.removeElement = function (anElement)
{
anElement.parentNode.removeChild(anElement);
}
return null;
}).apply(URLtoTabTitle);